home *** CD-ROM | disk | FTP | other *** search
- unit GenMinU2;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
-
- type
- TForm2 = class(TForm)
- private
- procedure WMSysCommand(var Msg: TWMSysCommand);
- message wm_SysCommand;
- public
- { Public declarations }
- end;
-
- var
- Form2: TForm2;
-
- implementation
-
- uses
- GenVars;
-
- {$R *.DFM}
-
- procedure TForm2.WMSysCommand(var Msg: TWMSysCommand);
- begin
- if Msg.CmdType and $FFF0 = sc_Icon then
- begin
- Application.Minimize;
- MinForm := Self
- end
- else
- inherited
- end;
-
- end.
-